home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / util-linux / README.Debian.hwclock < prev    next >
Text File  |  2009-10-22  |  3KB  |  69 lines

  1. hwclock and Debian:
  2.  
  3. When udev is running, hwclock -systz will be called when the RTC clock
  4. device is created.  When udev is not running, hwclock --hctosys will be
  5. called during system startup.
  6.  
  7. In both cases, hwclock --systohc will be called during system shutdown.
  8.  
  9. To set the date/time of the system, just use the standard UNIX date facilities
  10. (such as date) or any of the advanced timekeeping utilities (ntp, ntpdate,
  11. chrony). Other methods of setting the clock (such as hwclock) are likely to 
  12. cause trouble, do not use them.
  13.  
  14. Please note that because the shutdown scripts call hwclock --systohc, you
  15. cannot set the clock using hwclock only, as your adjustment will be lost on
  16. the next reboot. THIS MEANS YOU MUST *NOT* FOLLOW THE PROCEDURES IN THE
  17. hwclock(8) MAN PAGE TO SET THE CLOCK DATE/TIME USING A REBOOT UNLESS YOU
  18. EDIT THE SHUTDOWN SCRIPTS.
  19.  
  20.  
  21. The full story:
  22.  
  23. A Linux system actually has two clocks:
  24.  
  25.  - The System Clock, kept by the kernel. This is the clock that Linux uses for
  26.    day-to-day activities, and this is also the clock you set using date.
  27.  
  28.  - The Hardware Clock, also called RTC, which is used as a backup to keep time 
  29.    while the computer is turned off, or in APM suspended state. This is the
  30.    clock you set using hwclock --set.
  31.  
  32. (you can get more information about these two clocks in the hwclock(8) man
  33. page).
  34.  
  35. hwclock is used to copy time between these two clocks. For the Debian
  36. standard install, the system clock is initialized with the value of the
  37. hardware clock during startup, and the value of the system clock is copied
  38. back to the hardware clock during system shutdown/reboot.
  39.  
  40. So, in a Debian default install, you can keep the illusion that there's a
  41. single clock. Unless you use a program that modifies the hardware clock
  42. directly and does not set the system clock as well, that is.
  43.  
  44.  
  45. Issues with hwclock --adjust:
  46.  
  47. hwclock has a facility to try to correct for systematic drift in the
  48. hardware clock, accessed by hwclock --adjust. This facility is *dangerous*
  49. because it has a severe drawback: it assumes that no program other than
  50. hwclock --systohc will ever be used to change the hardware clock.
  51.  
  52. This assumption is often false, as many common utilities such as ntp,
  53. chrony, as well as your computer's System Setup BIOS program, and
  54. any other OS you have in your machine will change the clock.
  55.  
  56. Also, if hwclock --adjust is used, one must make sure the drift file
  57. (/etc/adjtime) is deleted every time the system clock is set to a very
  58. different value (even if you're using hwclock itself to do it!), or the
  59. drift computation might become invalid and cause the hardware clock to be
  60. incorrectly set the next time hwclock --adjust is used.
  61.  
  62. hwclock currently does not perform any sort of sanity checks in the values
  63. it uses to compute the drift file, and will corrupt your clock time by
  64. potentially very large amounts if anything goes wrong.
  65.  
  66. Don't use the hwclock --adjust facility, refer to alternate (and much safer)
  67. programs such as ntp or chrony if you need precision timekeeping.
  68.  
  69.